<?xml version="1.0" encoding="windows-1250"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:variable name="mark" select="'-souhláska'"/>
 <xsl:output method="html" indent="yes"/>

 <xsl:template match="/">
  <HTML>
   <BODY>
    <P>
     <xsl:for-each select="abeceda/*">
      <xsl:variable name="mark">
       <xsl:choose>
        <xsl:when test=".='A' or .='E' or .='I' or .='Y' or .='O' or .='U'">
         -samohláska
        </xsl:when>
        <xsl:otherwise>
         <xsl:value-of select="$mark"/>
        </xsl:otherwise>
       </xsl:choose>
      </xsl:variable>
      <xsl:value-of select="."/>
      <xsl:value-of select="$mark"/>
     </xsl:for-each>
    </P>
   </BODY>
  </HTML>
 </xsl:template>

</xsl:stylesheet>